home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / HELLO.PAK / HELLOAPP.CPP next >
C/C++ Source or Header  |  1997-05-06  |  403b  |  13 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1991, 1995 by Borland International, All Rights Reserved
  4. //----------------------------------------------------------------------------
  5. #include <owl/pch.h>
  6. #include <owl/applicat.h>
  7.  
  8. int
  9. OwlMain(int /*argc*/, char* /*argv*/ [])
  10. {
  11.   return TApplication("Hello World!").Run();
  12. }
  13.